Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.commandline.executor.service.defaultContrib">
<extension target="org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent" point="environment">
<documentation>Default environment parameters.</documentation>
<environment>
<parameters>
<!-- TMPDIR is the canonical Unix environment variable specified in various Unix and similar standards -->
<!-- TMP, TEMP and TEMPDIR are alternatively used by non-POSIX OS or non-standard programs -->
<!-- Windows/DOS programs randomly use TMP or TEMP environment variables -->
<parameter name="TMPDIR">${java.io.tmpdir}</parameter>
<parameter name="TMP">${java.io.tmpdir}</parameter>
<parameter name="TEMP">${java.io.tmpdir}</parameter>
<parameter name="TEMPDIR">${java.io.tmpdir}</parameter>
</parameters>
</environment>
</extension>
<extension target="org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent" point="commandTester">
<documentation>Simple default tester that only checks for command existence in the system path.</documentation>
<commandTester name="SystemPathTester"
class="org.nuxeo.ecm.platform.commandline.executor.service.cmdtesters.SystemPathExistTester">
</commandTester>
</extension>
</component>